--- import { getCollection, render } from "astro:content"; import Layout from "../../layouts/Layout.astro"; export async function getStaticPaths() { const projects = await getCollection("projects"); return projects.map((project) => ({ params: { slug: project.id }, props: { project }, })); } const { project } = Astro.props; const { Content } = await render(project); ---
two small orange & white kittens huddled together on a white surface. there is white text overlay over each of the kittens, the first reads 'you are made of stardust', the last reads 'and i am made of dirt'. there is a date stamp in the bottom right corner, it says '04.04.2008'.

{project.data.name}

{project.data.description}